home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / PROGEDIT / 2123.ZIP / WINDE.INI < prev    next >
Text File  |  1988-12-12  |  5KB  |  123 lines

  1. ;
  2. ;           WindE Initialization file
  3. ;
  4. ; CrtMode is 2 for color card with black and white monitor
  5. ;            3 for color card with color monitor
  6. ;            7 for monochrome card
  7. ;   and none of the above uses the current CrtMode
  8.  
  9. ; ## I R G B Color       use the entry under ## for all references to color
  10. ; 0  0 0 0 0 Black
  11. ; 1  0 0 0 1 Blue
  12. ; 2  0 0 1 0 Green
  13. ; 3  0 0 1 1 Cyan
  14. ; 4  0 1 0 0 Red
  15. ; 5  0 1 0 1 Magenta
  16. ; 6  0 1 1 0 Brown
  17. ; 7  0 1 1 1 Gray
  18. ; 8  1 0 0 0 Black
  19. ; 9  1 0 0 1 Light Blue
  20. ; 10 1 0 1 0 Light Green
  21. ; 11 1 0 1 1 Light Cyan
  22. ; 12 1 1 0 0 Pink
  23. ; 13 1 1 0 1 Light Magenta
  24. ; 14 1 1 1 0 Yellow
  25. ; 15 1 1 1 1 White
  26.  
  27. ; Text Color may be in the range of 0 to 127
  28. ; where color is defined as a combination of foreground
  29. ; and background color:
  30. ;       TextColor = BackGroundColor * 16 + ForeGroundColor
  31. ; where BackGroundColor is in the range of 0 to 7,
  32. ; and ForeGroundColor is in the range of 0 to 15.
  33. ;   On monochrome monitors:
  34. ;       use 0 text color for normal video, and
  35. ;       use non-zero color for reverse video screen
  36. TextColor = 112 Black on gray  (7*16+0)
  37.  
  38. ; SelectColor may be in the range of 0 to 15, where color
  39. ; is defined as the foreground color of the selection.
  40. ; this value is ignored for monochrome CrtMode
  41. SelectColor = 11 Light Cyan
  42.  
  43. ; FillChar may be in the range of 0 to 255 and is
  44. ; used to set the character that fills the screen
  45. ; background area
  46. ; FillChar = 176  ░
  47. FillChar = 177  ▒
  48. ; FillChar = 178  ▓
  49. ; FillChar = 206  ╬
  50. ; FillChar = 219  █
  51.  
  52. ; FillAttribute may be in the range of 0 to 127 and is
  53. ; used to set the attribute of the fill character above,
  54. ; where attribute is defined as a combination of foreground
  55. ; and background color:
  56. ;       FillAttribute = BackGroundColor * 16 + ForeGroundColor
  57. ; where BackGroundColor is in the range of 0 to 7,
  58. ; and ForeGroundColor is in the range of 0 to 15.
  59. ; this value is ignored for monochrome CrtMode
  60. FillAttribute = 31 Blue background & White Foreground (1*16+15)
  61.  
  62. ; BorderAttribute may be in the range of 0 to 127 and is
  63. ; used to set the attribute of the window borders.
  64. ; See FillAttribute above for usage.
  65. ; this value is ignored for monochrome CrtMode
  66. BorderAttribute = 123 Light Cyan on Gray (7*16+11)
  67.  
  68. ; MenuBorderAttribute may be in the range of 0 to 127 and is
  69. ; used to set the attribute of the menu borders.
  70. ; See FillAttribute above for usage.
  71. ; this value is ignored for monochrome CrtMode
  72. MenuBorderAttribute = 124 Pink on Gray (7*16+12)
  73.  
  74. ; the initial tab stop setting
  75. ; 8 is a special case since MS-DOS expands tabs to every 8th column
  76. ; if 8 is selected, tabs in a file will be expanded to spaces
  77. ; otherwise, tabs will remain embedded in the file.
  78. TabStop = 4
  79.  
  80. ; A unit of measurement of mouse movement is called the Mickey.
  81. ; An xMickey is the number of mickeys the mouse must move before
  82. ; the screen arrow moves in the x direction ( the smaller
  83. ; the number, the more sensitive the mouse movement is ).
  84. xMickey = 5
  85.  
  86. ; yMickey controls the sensitivity of the mouse in the y direction
  87. yMickey = 10
  88.  
  89. ; the default directory sort can be by file name, file extension
  90. ; or no sort
  91. ; Sort = 0 no sort
  92. Sort = 1 by file extension
  93. ; Sort = 2 by file name
  94.  
  95. ; the computer class affects the algorithm selection used by WindE
  96. ; for Class = 0 some short cuts are used to improve the processing
  97. ; speed at the expense of screen aesthetics.
  98. Class = 0 PC class machine
  99. ; Class = 1 AT class machine
  100.  
  101. ExitLog = 1 a log file is created during exit
  102. ; ExitLog = 0 no log file created during exit
  103.  
  104. ; StartLog = 0 no log file is used during startup
  105. StartLog = 1 a log file is used during startup
  106.  
  107. ; During startup WindE can be directed to search the path string
  108. ; in the environment for a log file if one is not in the current
  109. ; directory. Ignored if StartLog is 0.
  110. SearchLog = 0 do not Search the path for a log file on startup
  111. ; SearchLog = 1 Search the path for a log file on startup
  112.  
  113. ; During Startup, if command line parameters are used, WindE builds
  114. ; a log file after renaming any existing log file to Temp.Log.
  115. ; DeleteCommandLog = 0 command log is not deleted
  116. DeleteCommandLog = 1 command log is deleted-Temp.log is renamed WindE.Log
  117.  
  118. ; OpenToTheMax = 1 Full screen edit - no set corners when opening file for edit
  119. OpenToTheMax = 0 Set corners after EDIT function is executed
  120.  
  121. ; CreateBackupFile = 0 Do NOT create a backup file
  122. CreateBackupFile = 1 Create a backup file
  123.